home *** CD-ROM | disk | FTP | other *** search
- package Local.Game.Thing
- {
- import STC9.Bitmap.*;
- import STC9.Sprite.*;
- import flash.display.*;
- import flash.events.*;
- import flash.geom.*;
-
- public class CThingDraw extends CThingAudio
- {
-
-
- private var _Invisible:Boolean;
-
- public var mAnimationFrame:Number;
-
- public var mDrawn:Boolean;
-
- public var zDepth:int;
-
- public var mAnimationDirection:Number;
-
- public var mScale:Number;
-
- public var mAlpha:Number;
-
- public function CThingDraw()
- {
- super();
- }
-
- public function Draw() : void
- {
- mDrawn = true;
- }
-
- public function set mInvisible(param1:Boolean) : void
- {
- var _loc2_:* = undefined;
- for each(_loc2_ in mChildren)
- {
- if(true)
- {
- _loc2_.mInvisible = param1;
- }
- }
- if(true)
- {
- _Invisible = param1;
- }
- }
-
- public function get mInvisible() : Boolean
- {
- return _Invisible;
- }
- }
- }
-